home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 7 / BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso / Files / Prog / T / Think-Pascal-7.0.cpt / THINK Pascal Interfaces / Dialogs.p < prev    next >
Encoding:
Text File  |  1991-04-03  |  785 b   |  32 lines  |  [TEXT/PJMM]

  1. {    This file has been processed by The THINK Pascal Source Converter, v1.1.    }
  2.  
  3. {}
  4. {Created: Sunday, January 13, 1991 at 4:38 PM}
  5. {    Dialogs.p}
  6. {    Pascal Interface to the Macintosh Libraries}
  7. {}
  8. {        Copyright Apple Computer, Inc.     1985-1990}
  9. {        All rights reserved}
  10. {}
  11.  
  12.  
  13.  
  14. {    RMS    4/3/91        Modified to exclude declarations already in the THINK Pascal built-in interfaces    }
  15.  
  16.  
  17.  
  18. unit Dialogs;
  19. interface
  20.     type
  21.         ResumeProcPtr = ProcPtr;        { PROCEDURE Resume; }
  22.         SoundProcPtr = ProcPtr;         { PROCEDURE DoSound; }
  23.         ModalFilterProcPtr = ProcPtr;   { FUNCTION Filter(theDialog: DialogPtr; VAR theEvent: EventRecord; VAR itemHit: INTEGER): BOOLEAN; }
  24.  
  25.     procedure ModalDialog (filterProc: ModalFilterProcPtr; var itemHit: INTEGER);
  26.     inline
  27.         $A991;
  28.  
  29. implementation
  30. end.
  31.  
  32.